home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / WORDMISC / WRITTOOL.LZH / COLOR.DOC < prev    next >
Text File  |  1986-12-18  |  929b  |  26 lines

  1. -------------------------------------------------------------------------------
  2.  COLOR
  3. -------------------------------------------------------------------------------
  4. Summary:
  5.  
  6.      color <foreground code>[ <background code>]
  7.  
  8. COLOR changes the colors on the screen according to the following color codes:
  9.  
  10.        Black:   0      Red:     1      Green:   2      Yellow:  3
  11.        Blue:    4      Magenta: 5      Cyan:    6      White:   7
  12.  
  13. The background color code may be omitted; the default is black.  To highlight
  14. a foreground color, append a plus (+) after the foreground color code.
  15.  
  16. Examples:
  17.      color 3 0    Yellow on black
  18.      color 4      Blue (on default black)
  19.      color 2+ 4   Bright green on blue
  20.  
  21. Note:  Since COLOR uses ANSI sequences, you must specify ANSI.SYS in your 
  22. CONFIG.SYS file at system start.  Refer to your DOS documentation for details.
  23.  
  24.      device=ANSI.SYS           
  25.  
  26.